home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / muirexx2.1 / demos / muirexxbuild / about.rexx next >
OS/2 REXX Batch file  |  1996-08-28  |  866b  |  25 lines

  1. /* Application created by MUIBuild */
  2.  
  3. address BUILD
  4.  
  5. MUIA_Background  = 0x8042545b
  6. MUIA_Frame  = 0x8042ac64
  7. MUII_WindowBack  = 0
  8. MUIV_Frame_None  = 0
  9. MUIA_Window_DepthGadget  = 0x80421923
  10. MUIA_Window_DragBar  = 0x8042045d
  11. MUIA_Window_SizeGadget  = 0x8042e33d
  12. FALSE = 0
  13.  
  14. window ID ABOUT ATTRS MUIA_Window_DepthGadget FALSE MUIA_Window_DragBar FALSE MUIA_Window_SizeGadget FALSE
  15.  group HORIZ
  16.   button PICT "MUIREXX:demos/muirexx.brush" TRANS ATTRS MUIA_Background MUII_WindowBack MUIA_Frame MUIV_Frame_None
  17.   text ATTRS MUIA_Background MUII_WindowBack MUIA_Frame MUIV_Frame_None LABEL "This is a MUIRexx application for\nbuilding MUIRexx applications!\nThis is a preliminary release.\nSorry for the lack of documentation."
  18.  endgroup
  19.  group HORIZ
  20.   space HORIZ
  21.   button PRESS COMMAND """window ID ABOUT CLOSE""" PORT BUILD LABEL "Ok"
  22.   space HORIZ
  23.  endgroup
  24. endwindow
  25.